home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP Eylül 1998.iso / Slackwar / contents / scripts / bsdgames < prev    next >
Text File  |  1997-06-06  |  716b  |  20 lines

  1. #!/bin/sh
  2. if fgrep fortune etc/profile ; then
  3.     BOGUS_FLAG="bogus_value"
  4. else
  5.         echo "# Print a fortune cookie for login shells:" >> etc/profile
  6.     echo "echo" >> etc/profile
  7.     echo "fortune /usr/games/lib/fortunes/fortunes /usr/games/lib/fortunes/fortunes2" >> etc/profile
  8.     echo "echo" >> etc/profile
  9. fi
  10. if [ -r etc/csh.login ]; then 
  11.     if fgrep fortune etc/csh.login ; then
  12.         BOGUS_FLAG="bogus_value"
  13.     else
  14.             echo "# Print a fortune cookie for login shells:" >> etc/csh.login
  15.         echo 'if ( { tty --silent } ) then >& /dev/null' >> etc/csh.login
  16.         echo '  echo "" ; fortune /usr/games/lib/fortunes/fortunes /usr/games/lib/fortunes/fortunes2 ; echo ""' >> etc/csh.login
  17.         echo 'endif' >> etc/csh.login
  18.     fi
  19. fi
  20.